home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
Gnuplot 3.5 for Macintosh
/
SOURCES 3.5
/
internal.proto.h
< prev
next >
Wrap
Text File
|
1993-11-12
|
873b
|
41 lines
/* internal.c */
int matherr(void);
int reset_stack(void);
int check_stack(void);
struct value *pop(struct value *);
int push(struct value *);
int f_push(union argument *);
int f_pushc(union argument *);
int f_pushd1(union argument *);
int f_pushd2(union argument *);
int f_pushd(union argument *);
int f_call(union argument *);
int f_calln(union argument *);
int f_lnot(void);
int f_bnot(void);
int f_bool(void);
int f_lor(void);
int f_land(void);
int f_bor(void);
int f_xor(void);
int f_band(void);
int f_uminus(void);
int f_eq(void);
int f_ne(void);
int f_gt(void);
int f_lt(void);
int f_ge(void);
int f_le(void);
int f_plus(void);
int f_minus(void);
int f_mult(void);
int f_div(void);
int f_mod(void);
int f_power(void);
int f_factorial(void);
int f_jump(union argument *);
int f_jumpz(union argument *);
int f_jumpnz(union argument *);
int f_jtern(union argument *);